home *** CD-ROM | disk | FTP | other *** search
/ Commodore 64 Scene Diskmags Assortment / ML_Class_1990_Venom.d64 / source 1.4 (.txt) < prev    next >
Commodore BASIC  |  2023-02-26  |  287b  |  21 lines

  1. 100 * = $1000
  2. 110 ;
  3. 120 ; this is a bogus code
  4. 130 ; it has a bug
  5. 140 ;
  6. 150 lda <text
  7. 160 sta $c000
  8. 170 lda >text
  9. 180 sta $c001
  10. 190 ldy #$00
  11. 200 loop sty $cfff
  12. 210 lda $c000,y
  13. 220 jsr $ffd2
  14. 230 ldy $cfff
  15. 240 iny
  16. 250 sty $cfff
  17. 260 cpy #$08
  18. 270 bne loop
  19. 280 rts
  20. 290 text :b "it works"
  21.